/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jada.ngeditor.guiviews.editors; /** * * @author cris */ public class ImageModeComponent extends javax.swing.JPanel { /** * Creates new form ImageModeComponent */ public ImageModeComponent() { initComponents(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); jLabel1 = new javax.swing.JLabel(); jComboBox1 = new javax.swing.JComboBox(); setLayout(new java.awt.BorderLayout()); jPanel1.setPreferredSize(new java.awt.Dimension(400, 25)); jLabel1.setText("Select ImageMode"); jPanel1.add(jLabel1); jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Normal", "SubImage", "Resize", "Sprite", "Sprite-Resize", "SubImage-Direct", "SubImage-Resize", "Repeat" })); jPanel1.add(jComboBox1); add(jPanel1, java.awt.BorderLayout.PAGE_START); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JComboBox jComboBox1; private javax.swing.JLabel jLabel1; private javax.swing.JPanel jPanel1; // End of variables declaration//GEN-END:variables }